home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Games - Real-time Rend…ng & Software Technology
/
3D Games - Real-time Rendering & Software Technology.iso
/
flysdk
/
plugin
/
gamelib
/
color_particle.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2000-03-23
|
316 b
|
17 lines
// color_particle implemets a particle with
// color and transparency
class color_particle : public particle
{
public:
vector color; // the particle color
int texture; // texture image
float size;
// moves the particle dt ms
int step(int dt);
// draws the particle
void draw();
};